home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 22
/
Cream of the Crop 22.iso
/
program
/
snpd9611.zip
/
TICKTRAP.H
< prev
next >
Wrap
C/C++ Source or Header
|
1996-11-24
|
394b
|
25 lines
/* +++Date last modified: 06-Jul-1996 */
/*
** TICKTRAP.H - Trap the PC timer interrupt.
**
** public domain by Bob Stout
*/
#ifndef TICKTRAP__H
#define TICKTRAP__H
#include <stdlib.h>
#include "extkword.h"
#ifdef __IS_ZORTECH__
#include <int.h>
#else
#include "pchwio.h"
#endif
void ticktrap(int (*fptr)(void));
void tickchain(void);
#endif /* TICKTRAP__H */